home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 July / 07_02.iso / software / xq-xsetup / files / setup.exe / {app} / plugins / XQ MS Intellipoint 2.xpl < prev    next >
Text File  |  2001-11-27  |  3KB  |  94 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="6"
  3. "COUNT"="4"
  4. "UIPATH"="Hardware\Mouse\MS Intellipoint"
  5. "NAME"="Show/Hide Control Panel pages"
  6. "LANGUAGE"="VBScript"
  7. "TEXT 1"="Show "Activities" page"
  8. "TEXT 2"="Show "Buttons" page"
  9. "TEXT 3"="Show "Pointer Options" page"
  10. "TEXT 4"="Show "Wheel" page"
  11. "DESCRIPTION 1"="When you install Microsoft's IntelliPoint, your Mouse Properties applet in Control Panel acquires 4 new pages. If you want, you can disable these."
  12. "DESCRIPTION 2"="Note: Disabling all pages will revert the Mouse Properties dialog back to its 3 default pages."
  13. "COMMENT 1"="Thanks to CptSiskoX for suggesting that I download the IntelliPoint drivers, despite the fact I use a Logitech mouse. Ah well, it works..."
  14. "VERSION"="1.03"
  15. "AUTHOR"="Xteq Systems (Neil R. Turner)"
  16. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved."
  17. "CONTACTURL"="http://www.xteq.com/"
  18.  
  19. sP="HKLM\Software\Microsoft\Windows\CurrentVersion\Controls Folder\Mouse\shellex\PropertySheetHandlers\"
  20. sP1="Activities\@"
  21. sP2="Buttons\@"
  22. sP3="Wheel\@"
  23. sP4="PointerOptions\@"
  24.  
  25. SUB Plugin_Initialize
  26.  s=RegReadValue(sP & sP1)
  27.  if s="{F3D2DFC1-315B-11CE-BEA8-00AA0044301B}" then
  28.   Call SetUIElement(1,true)
  29.  end if
  30.  
  31.  s=RegReadValue(sP & sP2)
  32.  if s="{F3D2DFC2-315B-11CE-BEA8-00AA0044301B}" then
  33.   Call SetUIElement(2,true)
  34.  end if
  35.  
  36.  s=RegReadValue(sP & sP3)
  37.  if s="{F3D2DFC3-315B-11CE-BEA8-00AA0044301B}" then
  38.   Call SetUIElement(3,true)
  39.  end if
  40.  
  41.  s=RegReadValue(sP & sP4)
  42.  if s="{F3D2DFC4-315B-11CE-BEA8-00AA0044301B}" then
  43.   Call SetUIElement(4,true)
  44.  end if
  45. END SUB
  46.  
  47. SUB Plugin_CheckData(ElementIndex)
  48. END SUB
  49.  
  50. SUB Plugin_Apply(ElementIndex,ElementSubIndex)
  51.  s=GetUIElement(1)
  52.  if s=true then
  53.   Call RegWriteValue(sP & sP1,"{F3D2DFC1-315B-11CE-BEA8-00AA0044301B}",1)
  54.  else
  55.   u=RegValueExists(sp & sP1)
  56.   if u=true then
  57.    Call RegDeleteValue(sP & sP1)
  58.   end if
  59.  end if
  60.  
  61.  s=GetUIElement(2)
  62.  if s=true then
  63.   Call RegWriteValue(sP & sP2,"{F3D2DFC2-315B-11CE-BEA8-00AA0044301B}",1)
  64.  else
  65.   t=RegValueExists(sp & sP2)
  66.   if t=true then
  67.    Call RegDeleteValue(sP & sP2)
  68.   end if
  69.  end if
  70.  
  71.  s=GetUIElement(3)
  72.  if s=true then
  73.   Call RegWriteValue(sP & sP3,"{F3D2DFC3-315B-11CE-BEA8-00AA0044301B}",1)
  74.  else
  75.   t=RegValueExists(sP & sP3)
  76.   if t=true then
  77.    Call RegDeleteValue(sP & sP3)
  78.   end if
  79.  end if
  80.  
  81.  s=GetUIElement(4)
  82.  if s=true then
  83.   Call RegWriteValue(sP & sP4,"{F3D2DFC4-315B-11CE-BEA8-00AA0044301B}",1)
  84.  else
  85.   t=RegValueExists(sp & sP4)
  86.   if t=true then
  87.    Call RegDeleteValue(sP & sP4)
  88.   end if
  89.  end if
  90. END SUB
  91.  
  92. SUB Plugin_Terminate
  93. END SUB
  94.